home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
testbino.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
427 b
|
31 lines
/*
T E S T B I N O . C
*/
#include "iccomp.h"
int test_binop(opcode, lval, rval)
OPCODE_
opcode;
ESTRUC_
*lval,
*rval;
{
register int
ret;
if
(
(ret =
(
test_operand(lval, opcode)
||
test_operand(rval, opcode)
)
)
)
clearbin(rval, lval);
return(ret);
}